home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 52 / Amiga Format AFCD52 (Issue 136, May 2000).iso / -in_the_mag- / reader_requests / wild / appunti / wildbuilder.txt < prev    next >
Text File  |  2000-02-23  |  611b  |  15 lines

  1. WildBuilder is the part of wild.library (not a sublibrary, now)
  2. that manager the creation of the scene and all related objects.
  3.  
  4. Needed funcs:
  5.  
  6. - AllocWildObject(wapp,tags)        ; used to allocate everything... (wapp used for pool use)
  7. - FreeWildObject(obj)            ; (allocated via allocvecpooled: nothing more needed)
  8. - SetWildObjectTags(obj,type,tags)
  9.  
  10. BETTER!!:
  11.  
  12. - BuildWildObject(tags)            ; used to manage the object, set tags, and even BUILD IT if the BuildObject tag is specified and TRUE. Returns the pointer if BUILD is TRUE, or TRUE if nothing bad happened. FALSE for any error.
  13. - FreeWildObject(obj)            ; same.
  14.  
  15.